home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 24 / vidmode.zip / VMODE.DOC < prev   
Text File  |  1986-07-08  |  5KB  |  127 lines

  1.  
  2. VMODE.DOC                                               Version 1.0
  3. ---------                                               -----------
  4.  
  5. Copyright (c) 1986  Raymond Moon  ALL RIGHTS RESERVED
  6.  
  7.  
  8. INTRODUCTION
  9. ------------
  10.  
  11. A friend of mine bought a new Zenith 248 which was equipped with an EGA
  12. compatable card but soon discovered that the DOS MODE command could not
  13. set the video mode to any of the enhanced EGA video modes.  VMODE is a
  14. quick, little program to solve that.
  15.  
  16. BACKGROUND
  17. ----------
  18.  
  19. It uses ROM-BIOS VIDEO_IO (Int 10h) to set the modes.  This program can
  20. be used via the command line or via a menu.
  21.  
  22. USE
  23. ---
  24.  
  25. VMODE is very easy to use.  Just type in 'VMODE' and the following menu
  26. is displayed.
  27.  
  28. Mode  Type      Size   Colors    Adapter
  29.   0   Text      40x25  16(gray)  CGA,EGA,PCjr
  30.   1   Text      40x25  16/8      CGA,EGA,PCjr
  31.   2   Text      80x25  16(gray)  CGA,EGA,PCjr
  32.   3   Text      80x25  16/8      CGA,EGA,PCjr
  33.   4   Graphics 320x200 4         CGA,EGA,PCjr
  34.   5   Graphics 320x200 4(gray)   CGA,EGA,PCjr
  35.   6   Graphics 640x200 2         CGA,EGA,PCjr
  36.   7   Text      80x25  b\w       EGA,MA
  37.   8   Graphics 160x200 16        PCjr
  38.   9   Graphics 320x200 16        PCjr
  39.  10   Graphics 640x200 4         PCjr
  40.  13   Graphics 320x200 16        EGA
  41.  14   Graphics 640x200 16        EGA
  42.  15   Graphics 640x350 b\w       EGA
  43.  16   Graphics 640x350 64        EGA
  44. Enter desired mode:
  45.  
  46. Now just enter the number of the desired mode followed by a carriage return.
  47. If all goes well, the screen will blank and the LOGO will reappear in the
  48. new mode.
  49.  
  50. To use VMODE in the command line mode, just type in 'VMODE XX' where XX is
  51. the number of the desired mode from the above list.  If the mode is success-
  52. fully set, VMODE return to DOS with a return code of 0.  If VMODE is unsuccess-
  53. fully for any reason, VMODE return to DOS with a return code of 1.  This
  54. allows VMODE to be used in batch files and be tested for success.
  55.  
  56. VMODE only checks to see that the input is one of the above number; no other
  57. checks are made.  If the video mode is set to one not supported by your
  58. hardware, the screen will probably just blank.  To correct this problem,
  59. just type 'VMODE XX' where XX is a supported mode.  This typing will not be
  60. displayed.  THIS WILL WORK; YOU DO NOT HAVE TO REBOOT!
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68. ERROR MESSAGES
  69. --------------
  70.  
  71. VMODE:  Need DOS 2.0+
  72.         -VMODE can only be run with DOS versions 2.0 or later.
  73.  
  74. VMODE:  Invalid Mode
  75.         Aborting...
  76.         - Either the entered value on the command line was not one on the
  77.           above list or the entered value could not be interpreted.
  78.           This error only occurs when in the command line mode and causes
  79.           VMODE to abort with a return code of 1.
  80.  
  81. ERROR:  Video Mode was not properly set
  82.         - The video mode after setting is not the same as requested.
  83.           It appears that invalid modes are accepted with the screen going
  84.           crazy, so this error message may never be seen.
  85.  
  86. REQUIREMENTS
  87. ------------
  88.  
  89. VMODE requires DOS 2.0+ and about 1K memory to run.
  90.  
  91. USER RESPONSIBILITIES
  92. ---------------------
  93.  
  94. - All users are granted to make as many copies of this program as required.
  95. - There are no restrictions on how many different computers one user may
  96.   use VMODE.
  97. - Copies may be distributed to others as long as the fillowing
  98.   requirements are met:
  99.   -- All three files, VMODE.ASM, VMODE.COM, and VMODE.DOC, are
  100.      transfered as a whole.
  101.   -- These programs are distributed free of cost.  Only the cost fo the
  102.      media (e.g. diskette) can be charged.
  103.   -- The files are not modified in any way.
  104. - The source code is distributed with the program to encourage user
  105.   modification to meet individual needs, byt in no case will any of
  106.   these modifications be incorporated and distributed.
  107. - The author encourages comments.  Please leave comments, suggestions,
  108.   or suggested modifications in a message on Andy Smith's RBBS
  109.   (301-956-3396).
  110.  
  111. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITIES
  112. ------------------------------------------------------
  113.  
  114. The author has taken due care in writing this program, and the program
  115. is supplied as is.  The author makes no expressed or implied warranty of
  116. any kind with regard to this program.  In no event shall the author be
  117. liable for incidental or consequential damages in connection with or
  118. arising out of the use of this program.
  119.  
  120. PROGRAM INFOMATION
  121. ------------------
  122.  
  123. VMODE was assembled using Microsoft MASM v3.0 with the /ml and /a
  124. switches set.
  125.  
  126. 6 July 1986                             Raymond Moon
  127.